/* Add a black background color to the top navigation */
.topnav {
    /*background-color: #333;*/
    background-color:#FE9100;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    /*padding: 14px 16px;*/
    padding: 5px 15px;
    text-decoration: none;
    font-size: 12px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    list-style-type: none;
}
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #4CAF50;
    color: white;
}
.actionLink a {
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    margin-right: 5px;
    float: left;
    display: block;
    color: black;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	border-radius: 4px;
	font-size: 12px;
    width: 65px;
    height: 17px;
    line-height: 17px;
}
.actionLink a:hover
{
  	background-color: gray;
    color: white;
}
